home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Utilities / TGZ / own_string.h < prev    next >
Encoding:
Text File  |  1997-08-15  |  126 b   |  9 lines

  1. void stringcat( char s[], char t[])
  2. {
  3.     int i,j;
  4.  
  5.     i = j = 0;
  6.     while (s[i] != '\0') i++;
  7.     while ((s[i++] = t[j++]) != '\0');
  8. }
  9.